home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / misc / plhelp / plcont < prev    next >
Text File  |  1994-06-06  |  664b  |  27 lines

  1. plcont:
  2.  
  3. Synopsis: Plot surface contours.
  4.  
  5. Syntax: plcont ( CL )
  6.  
  7. Desription:
  8.  
  9.     plcont takes a single list as argument and plots the contours
  10.     of the surface described by the list CL. CL contains the
  11.     members: 
  12.  
  13.         x    The x-axis values, a vector with number of
  14.             elements equal to the number of rows of z.
  15.  
  16.         y    The y-axis values, a vector with number of
  17.             elements equal to the number of column of z.
  18.  
  19.         z    A rectangular matrix, z[i;j] = f(x[i],y[j])
  20.  
  21.         clevel    (optional) A vector containing the numeric
  22.             values of the contour lines. The default is to
  23.             use 10 contours, evenly spaced from the
  24.             minimum z-value to the maximum z-value.
  25.  
  26. See Also: plot3, plmesh
  27.